const go/token.OR

16 uses

	go/token (current package)
		token.go#L45: 	OR      // |
		token.go#L154: 	OR:      "|",
		token.go#L274: 	case ADD, SUB, OR, XOR:

	go/constant
		value.go#L1147: 		case token.OR:
		value.go#L1177: 		case token.OR:

	go/doc
		exports.go#L183: 		if t.Op == token.OR { // union

	go/parser
		parser.go#L855: 		case token.OR:
		parser.go#L882: 	if typeSetsOK && p.tok == token.OR && f.typ != nil {
		parser.go#L1231: 	for p.tok == token.OR {
		parser.go#L1234: 		t.Op = token.OR
		parser.go#L2720: 		case token.OR:

	go/scanner
		scanner.go#L950: 			tok = s.switch3(token.OR, token.OR_ASSIGN, '|', token.LOR)

	go/types
		decl.go#L731: 		wrap = op.Op == token.OR
		expr.go#L768: 		token.OR:      allInteger,
		union.go#L194: 	if o, _ := x.(*ast.BinaryExpr); o != nil && o.Op == token.OR {

	golang.org/x/tools/internal/typesinternal
		zerovalue.go#L379: 					Op: token.OR,